home *** CD-ROM | disk | FTP | other *** search
/ Amiga Tools 5 / Amiga Tools 5.iso / tools / net-tools / voodoo / rexx / sendvoodoo.bed < prev    next >
Encoding:
Text File  |  1996-03-12  |  351 b   |  17 lines

  1. /*
  2.  * Deliver message when using Blacks Editor as an external
  3.  * editor for Voodoo.
  4.  *
  5.  */
  6.  
  7. options results
  8.  
  9. SaveFile QUIET NOBACKUP NOICON        /* Save message */
  10.  
  11. GetFilePath FILE            /* Get filename only */
  12. message="T:"result            /* Attach T: as path to filename */
  13.  
  14. address VOODOO 'SEND' message        /* Send to Voodoo */
  15. Quit QUIET                /* Quit out of BED */
  16.  
  17.